home *** CD-ROM | disk | FTP | other *** search
- Private Sub cmdPrepareToTest_Click()
-
- Dim NSApp As Object
- Dim NSBB As Object
-
- Set NSApp = CreateObject("NeuroSolutions.Application")
- Set NSBB = NSApp.activeBreadboard
-
- NSBB.send "controlBackprop. freeALL ( )"
- NSBB.deleteObject "inputFile"
-
- NSBB.stampOnAndMove "OLEInput", "inputAxon"
- NSBB.send "oLEInput. setActiveAccessPoint ( ""Pre-Activity"" )"
-
- NSBB.stampOnAndMove "MatrixViewer", "outputAxon"
- NSBB.send "matrixViewer. setName ( ""trainingCostProbe"" )"
- NSBB.send "trainingCostProbe. setActiveAccessPoint ( ""Activity"" )"
- NSBB.send "trainingCostProbe. openEngineWindow ( )"
-
- NSBB.send "control. setEpochs ( 1 )"
- NSBB.send "control.setLearning(FALSE)"
-
- End
-
- End Sub
-